home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
351-375
/
351
/
pdc
/
pdcsrc.lzh
/
PDC
/
bcopy.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-04-06
|
237b
|
17 lines
/*
- bcopy - Berklix equivalent of memcpy
*/
#include "config.h"
bcopy(src, dst, length)
CONST char *src;
char *dst;
int length;
{
extern VOIDSTAR memcpy();
/*(void)*/ memcpy((VOIDSTAR)dst, (CONST VOIDSTAR)src, (SIZET)length);
}